home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmTest7
- AutoRedraw = -1 'True
- BorderStyle = 0 'None
- ClientHeight = 2832
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3504
- ControlBox = 0 'False
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2832
- ScaleWidth = 3504
- ShowInTaskbar = 0 'False
- Begin VB.CommandButton cmdShowHide
- Caption = "Show/Hide"
- Height = 372
- Left = 180
- TabIndex = 0
- Top = 180
- Width = 1092
- End
- Attribute VB_Name = "frmTest7"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdShowHide_Click()
- Dim w As sgWindow.Window
- Set w = frmMain.g_wndTest
-
- If w.Visible Then
- w.Visible = False
- Else
- w.Visible = True
- End If
- End Sub
-